RequestDataResponse

data class RequestDataResponse(objectStoreDataEntries: List<DataEntry>, hasMore: Boolean)

Represents response frame that is returned from IndexedDB#requestData operation call. Requests data from object store or index.

See also

Constructors

RequestDataResponse
Link copied to clipboard
fun RequestDataResponse(objectStoreDataEntries: List<DataEntry>, hasMore: Boolean)

Properties

hasMore
Link copied to clipboard
val hasMore: Boolean
If true, there are more entries to fetch in the given range.
objectStoreDataEntries
Link copied to clipboard
val objectStoreDataEntries: List<DataEntry>
Array of object store data entries.

Sources

jvm source
Link copied to clipboard